home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Plus Leser 19
/
Amiga Plus Leser CD 19.iso
/
Online
/
AmigaTalk
/
general
/
ByteArray.st
< prev
next >
Wrap
Text File
|
2000-05-15
|
449b
|
25 lines
Class ByteArray :ArrayedCollection
[
at: index
^ <primitive 118 self index>
|
at: index put: value
<primitive 119 self index value>
|
printString ! str !
str <- '#[ '.
(1 to: self size)
do: [:i | str <- str , (self at: i) printString , ' '].
^ str , ']'
|
displayBytes: title
<primitive 229 22 self title>
|
size
^ <primitive 117 self>
|
new: size
^ <primitive 116 size>
]